From 75cb1316801bcd2814254c62f380d44b2f28b718 Mon Sep 17 00:00:00 2001 From: "djm@kirby.fc.hp.com" Date: Mon, 19 Dec 2005 15:18:54 -0600 Subject: [PATCH] Fix simulator boot (uses old bootparam format with no initrd) --- xen/arch/ia64/xen/xensetup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/ia64/xen/xensetup.c b/xen/arch/ia64/xen/xensetup.c index 9dbec81732..916dc58270 100644 --- a/xen/arch/ia64/xen/xensetup.c +++ b/xen/arch/ia64/xen/xensetup.c @@ -191,7 +191,7 @@ void start_kernel(void) firsthole_start = 0; efi_memmap_walk(xen_find_first_hole, &firsthole_start); - if (ia64_boot_param->domain_start == 0 + if (running_on_sim || ia64_boot_param->domain_start == 0 || ia64_boot_param->domain_size == 0) { /* This is possible only with the old elilo, which does not support a vmm. Fix now, and continue without initrd. */ -- 2.30.2